
/* ================= RESET ================= */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    overflow-x:hidden;
    background:#f8f8f8;
}

/* ================= HERO SECTION ================= */
.directhero{
    width:100%;
    height:100vh;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:flex-end;
    padding:0 8%;
}

.directhero img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:-2;
    animation:zoomBg 12s ease-in-out infinite alternate;
}

.directhero::after{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.7));
    z-index:-1;
}

.directhero-content{
    max-width:550px;
    position: absolute;
    text-align: start;
    right: 40px;
    bottom: 100px;
    color:#fff;
}

.directhero-content h1{
    font-size:50px;
    margin-bottom: 25px;
    line-height: 0.5;
    animation:fadeUp 1s ease forwards;
}

.directhero-content p{
   font-size:18px;
    margin:40px 0;
    line-height: 0%;
    animation:fadeUp 1.2s ease forwards;
}

.directhero-buttons{
     display:flex;
    justify-content:flex-start;
    gap:60px;
    animation:fadeUp 1.4s ease forwards;
}


.directbtn{
    padding:12px 25px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:0.4s ease;
    display:inline-block;
}

.directprimary-btn{
    background:#ff7a2f;
    color:#fff;
}

.directsecondary-btn{
    border:2px solid #fff;
    color:#fff;
}
.directprimary-btn:hover{
    transform:translateY(-5px);
    background:#1535a0;
}


.directsecondary-btn:hover {
    background: #fff;
    transform: translateY(-5px);
    color: #ff7a2f; 
}

/* mobile responsive */
@media (max-width:768px){

    .directhero-content{
    max-width:550px;
    position: absolute;
    text-align: start;
    right: 70px;
    bottom:10px;
    color:#fff;
}
    .directhero-content h1{
        font-size: 32px;
        margin-bottom: 5px;
        line-height: 0.5;
        
    }
    .directhero-content p{
     font-size:12px;
     text-align: start;
        
    }
}
/*============
 CONTENT
 ==============*/
.direct-section{
    background-color: #1535a0;
    width:100%;
    overflow: hidden;
}
.direct-content {
    max-width: 90%;       
    margin: 48px auto 0;   
    padding: 0 20px;      
    text-align: justify;    
    opacity: 0;             
    animation: contentFadeUp 1.2s cubic-bezier(0.215, 0.610, 0.355, 1) forwards;
    animation-delay: 0.3s;  
}
.direct-p {
    font-size: 1.15rem;    
    line-height: 1.75;      
    color: #ff7a2f;        
    font-weight: 400;
    letter-spacing: 0.2px;  
}

@keyframes contentFadeUp {
    0% {
        opacity: 0;
        transform: translateY(25px); 
    }
    100% {
        opacity: 1;
        transform: translateY(0px); 
    }
}
/*=======================
  WHAT WE DO SECTION
=======================*/


*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

/* Section Container */
.services-container{
    max-width:1200px;
    width:100%;
    margin:auto;
    padding:80px 20px;
    text-align:center;
}

/*=======================
  HEADER
=======================*/

.services-header{
    margin-bottom:60px;
}

.services-header .sub-title{
    color:#656565;
    font-size:14px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;
    display:inline-block;
}

.services-header .sub-title::before,
.services-header .sub-title::after{
    content:"•";
    margin:0 8px;
}

.services-header h2{
    font-size:42px;
    color:#f26522;
    font-weight:700;
    margin-top:12px;
}

.services-header h2 span{
    color:#f26522;
}

/*=======================
  GRID
=======================*/

.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
    gap:30px;
}

/*=======================
  CARD
=======================*/

.service-card{
    background:#fff;
    border-radius:15px;
    border:1px solid #f0f0f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display:flex;
    flex-direction:column;
    align-items:center;
    padding-bottom:35px;
    transition:all .4s ease;
    position: relative;
    overflow: visible; 

}

.service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(242,101,34,.15);
}

/*=======================
  IMAGE
=======================*/

.image-wrapper{
    position:relative;
    width:100%;
    height:240px;
    overflow:hidden;
     border-radius: 15px 15px 0 0;
}

.image-wrapper img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .6s ease;
}

.service-card:hover .image-wrapper img{
    transform:scale(1.08);
}


/*=======================
  CONTENT
=======================*/

.card-content{
    padding:45px 25px 0;
    display:flex;
    flex-direction:column;
    align-items:center;
    flex-grow:1;
}

.card-content h3{
    font-size:20px;
    color:#f26522;
    font-weight:700;
    margin-bottom:15px;
    line-height:1.4;
}

.card-content p{
    font-size:14px;
    color:#8b8a8ad9;
    line-height:1.8;
    margin-bottom:25px;
}

/*=======================
  ORANGE ACCENT LINE
=======================*/

.accent-line{
    width:45px;
    height:4px;
    background:#f26522;
    border-radius:50px;
    margin-top:auto;
    transition:width .4s ease;
}

.service-card:hover .accent-line{
    width:80px;
}

/*=======================
  RESPONSIVE
=======================*/

@media (max-width:992px){

    .services-header h2{
        font-size:36px;
    }

    .services-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media (max-width:768px){

    .services-header h2{
        font-size:30px;
    }

    .services-grid{
        grid-template-columns:1fr;
    }

    .image-wrapper{
        height:220px;
    }
}

@media (max-width:480px){

    .services-container{
        padding:60px 15px;
    }

    .services-header h2{
        font-size:26px;
    }

    .card-content{
        padding:45px 20px 0;
    }
}


/*=========================
 Emergency Response & Crisis Relief
============================*/
.dual-section{
    padding:80px 20px;
    background:#f9f9f9;
}

.container{
    max-width:1200px;
    margin:auto;
    display:flex;
    gap:40px;
    align-items:stretch;
}

/* Common Box Style */
.box{
    flex:1;
    background:#fff;
    padding:40px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
    position:relative;
    overflow:hidden;
    transition:0.4s ease;
}

.box h2{
    font-size:24px;
    color:#ff7a2d;
    margin-bottom:15px;
}

.box p{
    font-size:15px;
    color:#666;
    line-height:1.8;
}


.left{
    border-left:6px solid #e74c3c;
}

.right{
    border-left:6px solid #f26522;
}

/* Hover effect */
.box:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,0.12);
}

/* RESPONSIVE */
@media(max-width:768px){
    .container{
        flex-direction:column;
    }

    .box{
        width:100%;
    }
}

/*==========================
     GALLERY SECTION
     ========================*/
     *{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    padding:0px;
    font-family:Arial, sans-serif;
}

.gallery{
    display:grid;
    padding: 50px;
    grid-template-columns:repeat(4, 1fr);
    gap:20px;
}

.gallery-item{
    position:relative;
    overflow:hidden;
    cursor:pointer;
    border-radius:10px;
}

.gallery-item img{
    width:100%;
    height:250px;
    object-fit:cover;
    display:block;
    transition:transform 0.4s ease;
}

.gallery-item:hover img{
    transform:scale(1.1);
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.6);
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:24px;
    font-weight:bold;
    opacity:0;
    transition:opacity 0.4s ease;
}

.gallery-item:hover .overlay{
    opacity:1;
}

/* Tablet */
@media (max-width: 992px){
    .gallery{
        grid-template-columns:repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 576px){
    .gallery{
        grid-template-columns:1fr;
    }
}





 /* ================================= -->
<!-- CURRENT URGENT CASES -->
<!-- ================================= */


    /* Section Wrapper */
    .urgent-cases-section {
      width: 100%;
      background:#f8f5f1;
      background-image: 
        radial-gradient(circle at top left, rgba(230, 28, 36, 0.05) 0%, transparent 40%),
        radial-gradient(circle at bottom right, rgba(230, 28, 36, 0.08) 0%, transparent 40%);
      border-radius: 0;
      padding: 40px 30px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
      position: relative;
      overflow: hidden;
    }

    /* Header Styling */
    .section-header {
      text-align: center;
      margin-bottom: 35px;
    }

    .top-icon {
      color:#ff6b2c;
      font-size: 24px;
      margin-bottom: 8px;
    }

    .section-header h2 {
      font-size: 42px;
      font-weight: 800;
      color:#ff6b2c;
      letter-spacing: 0.5px;
    }

    .section-header h2 span {
      color:#ff6b2c;
    }

    .section-header p {
      color: #666666;
      font-size: 14px;
      margin-top: 6px;
      font-weight: 500;
    }

    
    /* Cards Grid */
    .cards-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 60px;
      margin-bottom: 35px;
    }

    /* Card Item */
    .case-card {
    
      background: white;
      border-radius:16px;
      overflow: hidden;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
    }

    .case-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 12px 25px rgba(230, 28, 36, 0.12);
    }

    /* Image Wrapper & Badge */
    .card-img-wrapper {
      position: relative;
      width: 100%;
      height: 200px;
    }

    .card-img-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .badge-urgent {
      position: absolute;
      top: 14px;
      left: 14px;
      background-color: #ff6b2c;
      color: #fff;
      font-size: 11px;
      font-weight: 700;
      padding: 5px 12px;
      border-radius: 20px;
      display: flex;
      align-items: center;
      gap: 5px;
      text-transform: uppercase;
      box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    }

    .badge-urgent i {
      font-size: 10px;
    }

    /* Card Content */
    .card-body {
      padding: 20px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }

    .patient-name {
      font-size: 17px;
      font-weight: 700;
      color: #ff6b2c;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .patient-name i {
      color:#ff6b2c;
      font-size: 16px;
    }

    .cause-title {
      color:#ff6b2c;
      font-size: 13px;
      font-weight: 600;
      margin: 6px 0 8px 0;
    }

    .description {
      font-size: 12.5px;
      color:#666666;
      line-height: 1.5;
      margin-bottom: 18px;
      min-height: 38px;
    }

    /* Progress Box */
    .progress-box {
      background-color: var(--bg-pink);
      border-radius: 12px;
      padding: 12px 14px;
      margin-bottom: 18px;
    }

    .progress-info {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 8px;
    }
    .progress-bar-fill{
    width:0%;
    height:100%;
    transition:width 1.5s ease;
}

    .amount-details {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .heart-icon-bg {
      background: #ff6b2c;
      color: #fff;
      width: 24px;
      height: 24px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
    }

    .req-text {
      font-size: 11px;
      color:#ff6b2c;
      font-weight: 500;
      line-height: 1.1;
    }

    .req-amount {
      font-size: 16px;
      font-weight: 800;
      color: #444;
    }

    .req-amount span {
      font-size: 11px;
      font-weight: 600;
    }

    .raised-percentage {
      font-size: 11px;
      font-weight: 700;
      color: #444;
    }

    /* Progress Bar */
    .progress-bar-container {
      width: 100%;
      height: 8px;
      background-color: #e2e2e2;
      border-radius: 10px;
      overflow: hidden;
    }

    .progress-bar-fill {
      height: 100%;
      background-color: #ff6b2c;
      width: 0%; 
      border-radius: 10px;
      transition: width 1.5s cubic-bezier(0.1, 0.42, 0.41, 0.8);
    }

    /* Buttons */
    .btn-help {
      width: 100%;
      background-color:#ff6b2c;
      color: #fff;
      border: none;
      padding: 10px;
      border-radius: 10px;
      font-weight: 700;
      font-size: 13px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      transition: background-color 0.2s ease, transform 0.1s ease;
      text-transform: uppercase;
      margin-top: auto;
    }

    .btn-help:hover {
      background-color: #f94b00;
    }

    .btn-help:active {
      transform: scale(0.98);
    }

    /* Bottom Banner Box */
    .bottom-banner {
      background-color: #ffffff;
      border-radius: 50px;
      padding: 12px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      box-shadow: 0 4px 15px rgba(0,0,0,0.03);
      max-width: 750px;
      margin: 0 auto;
    }

    .banner-left {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .banner-icon {
      background-color:#ff6b2c;
      color: #fff;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      flex-shrink: 0;
    }

    .banner-text h4 {
      font-size: 14px;
      font-weight: 700;
      color:#444;
    }

    .banner-text p {
      font-size: 12px;
      color: #666;
    }

    .btn-donate-now {
      background-color: #ff6b2c;
      color: #fff;
      border: none;
      padding: 10px 22px;
      border-radius: 20px;
      font-weight: 700;
      font-size: 13px;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 8px;
      white-space: nowrap;
      transition: background-color 0.2s ease, transform 0.1s ease;
    }

    .btn-donate-now:hover {
      background-color: var(--hover-red);
    }

    .btn-donate-now:active {
      transform: scale(0.98);
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .bottom-banner {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        border-radius: 20px;
        padding: 18px;
      }
      .banner-left {
        flex-direction: column;
      }
    }



    /*================================================================
                     Donation Page 
      =================================================*/

      :root {
    --primary: #ff7a3d;
    --primary-dark: #e96329;
    --cream: #fff8f3;
    --dark: #252525;
    --text: #555;
    --border: #e6e6e6;
    --white: #ffffff;
    --green: #4d8b55;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    background: var(--cream);
    color: var(--dark);
}

button,
input,
textarea,
select {
    font-family: inherit;
}

button {
    cursor: pointer;
}

.donation-page {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 43% 57%;
}


/* =========================
   LEFT SIDE
========================= */

.donation-info {
    position: relative;
    padding: 45px 7%;
    background:
        linear-gradient(
            135deg,
            rgba(255, 122, 61, .97),
            rgba(225, 83, 28, .97)
        );

    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.donation-info::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgb(198, 9, 9);
    top: -150px;
    right: -150px;
}

.donation-info::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,.06);
    bottom: -150px;
    left: -100px;
}

.brand {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    gap: 14px;
}

.brand-icon {
    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    background: white;
    color: var(--primary);

    border-radius: 14px;

    font-size: 21px;
}

.brand h2 {
    font-size: 19px;
}

.brand span {
    font-size: 11px;
    opacity: .85;
}

.info-content {
    position: relative;
    z-index: 2;

    max-width: 590px;
}

.small-title {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
}

.info-content h1 {
    margin: 18px 0;

    font-size: clamp(40px, 4vw, 65px);
    line-height: 1.1;
}

.info-content h1 span {
    display: block;
    color: #fff0e8;
}

.info-content > p {
    max-width: 570px;

    font-size: 15px;
    line-height: 1.8;

    opacity: .9;

    margin-bottom: 30px;
}

.impact-list {
    display: grid;
    gap: 18px;
}

.impact-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.impact-icon {
    min-width: 43px;
    height: 43px;

    display: grid;
    place-items: center;

    background: rgba(255,255,255,.15);
    border-radius: 12px;

    font-size: 20px;
}

.impact-item h3 {
    font-size: 14px;
    margin-bottom: 2px;
}

.impact-item p {
    font-size: 11px;
    line-height: 1.5;
    opacity: .8;
}

.contact-info {
    position: relative;
    z-index: 2;

    display: flex;
    gap: 25px;

    font-size: 12px;
    opacity: .9;
}


/* =========================
   RIGHT SIDE
========================= */

.donation-form-section {
    padding: 45px 6%;
    background: #e4bebe;

    display: flex;
    justify-content: center;
}

.form-container {
    width: 100%;
    max-width: 760px;
}

.form-header {
    margin-bottom: 30px;
}

.form-header span {
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.form-header h2 {
    font-size: 34px;
    margin: 7px 0;
}

.form-header p {
    color: #777;
    font-size: 13px;
}


/* =========================
   FORM
========================= */

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;

    font-size: 12px;
    font-weight: 600;
    color: #333;
}

.form-group label span {
    color: var(--primary);
}

input,
textarea,
select {
    width: 100%;

    border: 1px solid var(--border);
    border-radius: 10px;

    padding: 13px 14px;

    outline: none;

    background: #fff;

    color: #333;

    font-size: 12px;

    transition: .25s;
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255,122,61,.1);
}

textarea {
    resize: vertical;
}


/* TOGGLE */

.toggle-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;

    background: #f6f6f6;

    padding: 4px;

    border-radius: 11px;
}

.toggle-btn {
    border: none;
    background: transparent;

    padding: 11px;

    border-radius: 8px;

    font-size: 12px;
    color: #777;
}

.toggle-btn.active {
    background: white;
    color: var(--primary);

    font-weight: 600;

    box-shadow: 0 2px 8px rgba(0,0,0,.06);
}


/* AMOUNT */

.amount-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;
}

.amount-btn {
    background: white;

    border: 1px solid var(--border);
    border-radius: 9px;

    padding: 12px;

    font-size: 13px;
    font-weight: 600;

    transition: .25s;
}

.amount-btn:hover,
.amount-btn.active {
    border-color: var(--primary);
    color: var(--primary);
    background: #fff7f2;
}

.custom-amount {
    display: none;

    margin-top: 10px;

    position: relative;
}

.custom-amount.show {
    display: block;
}

.custom-amount span {
    position: absolute;
    left: 14px;
    top: 13px;

    color: var(--primary);
    font-weight: 600;
}

.custom-amount input {
    padding-left: 30px;
}

.selected-amount {
    margin-top: 10px;

    font-size: 11px;
    color: #777;
}

.selected-amount strong {
    color: var(--primary);
}


/* SECTION TITLE */

.form-section-title {
    font-size: 14px;
    font-weight: 700;

    padding-bottom: 10px;
    margin: 27px 0 17px;

    border-bottom: 1px solid #eee;
}


/* COLUMNS */

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.three-column {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
}


/* PAYMENT */

.payment-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.payment-card {
    display: flex;
    align-items: center;
    gap: 9px;

    padding: 13px;

    border: 1px solid var(--border);
    border-radius: 10px;

    cursor: pointer;

    transition: .25s;
}

.payment-card:has(input:checked) {
    border-color: var(--primary);
    background: #fff7f2;
}

.payment-card input {
    width: auto;
    accent-color: var(--primary);
}

.payment-card strong {
    display: block;
    font-size: 11px;
}

.payment-card small {
    display: block;
    margin-top: 2px;
    color: #888;
    font-size: 8px;
}


/* CHECKBOX */

.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 9px;

    margin: 18px 0;

    font-size: 10px;
    color: #666;

    cursor: pointer;
}

.checkbox input {
    width: 16px;
    height: 16px;

    margin-top: 1px;

    accent-color: var(--primary);
}


/* DONATE BUTTON */

.donate-btn {
    width: 100%;

    border: none;
    border-radius: 11px;

    padding: 16px;

    background: var(--primary);
    color: white;

    font-size: 14px;
    font-weight: 700;

    box-shadow: 0 8px 20px rgba(255,122,61,.25);

    transition: .25s;
}

.donate-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.donate-btn span {
    margin-right: 7px;
}

.secure-note {
    text-align: center;

    margin-top: 13px;

    font-size: 10px;
    color: #999;
}


/* =========================
   SUCCESS MODAL
========================= */

.success-modal {
    position: fixed;
    inset: 0;

    background: rgba(0,0,0,.55);

    display: none;
    align-items: center;
    justify-content: center;

    padding: 20px;

    z-index: 1000;
}

.success-modal.show {
    display: flex;
}

.success-box {
    width: 100%;
    max-width: 450px;

    background: white;

    padding: 40px 30px;

    border-radius: 20px;

    text-align: center;

    animation: popup .3s ease;
}

@keyframes popup {

    from {
        opacity: 0;
        transform: translateY(20px) scale(.96);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

}

.success-icon {
    width: 65px;
    height: 65px;

    margin: 0 auto 18px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #e8f6ea;
    color: var(--green);

    font-size: 28px;
    font-weight: 700;
}

.success-box h2 {
    font-size: 25px;
}

.success-box > p {
    color: #777;
    font-size: 12px;

    margin: 8px 0 20px;
}

.donation-summary {
    background: #fafafa;

    border-radius: 12px;

    padding: 15px;

    text-align: left;
}

.donation-summary p {
    display: flex;
    justify-content: space-between;

    padding: 8px 0;

    border-bottom: 1px solid #eee;

    font-size: 10px;
    color: #777;
}

.donation-summary p:last-child {
    border: none;
}

.donation-summary strong {
    color: #333;
}

.success-message {
    line-height: 1.6;
}

.close-success {
    width: 100%;

    border: none;
    border-radius: 9px;

    padding: 13px;

    background: var(--primary);
    color: white;

    font-weight: 600;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {

    .donation-page {
        grid-template-columns: 1fr;
    }

    .donation-info {
        min-height: 650px;
    }

    .info-content {
        margin: 70px 0;
    }

}


@media (max-width: 650px) {

    .donation-info {
        padding: 30px 22px;
        min-height: auto;
    }

    .info-content {
        margin: 60px 0;
    }

    .info-content h1 {
        font-size: 40px;
    }

    .contact-info {
        flex-direction: column;
        gap: 5px;
    }

    .donation-form-section {
        padding: 35px 18px;
    }

    .form-header h2 {
        font-size: 28px;
    }

    .amount-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .two-column,
    .three-column,
    .payment-methods {
        grid-template-columns: 1fr;
    }

}